Carbon


QDOpcodeProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDOpcodeProcPtr) (
    Rect *fromRect, 
    Rect *toRect, 
    SInt16 opcode, 
    SInt16 version
);

You would declare your function like this if you were to name it MyQDOpcodeCallback:

void MyQDOpcodeCallback (
    Rect *fromRect, 
    Rect *toRect, 
    SInt16 opcode, 
    SInt16 version
);
fromRect
toRect
opcode
version

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)